home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #5 / Software USA Volume 4.05.iso / mac / Education / HTML Tricks / Extreme Mac HTML Tricks v2.1 / Extreme Mac HTML Tricks v2.1.rsrc / TEXT_140.txt < prev    next >
Text File  |  1996-10-31  |  2KB  |  39 lines

  1.  
  2.  
  3.         What is client pull? To better explain this option, read the example below. 
  4.  
  5.     Example: Lets say that you just moved you web page to a new address and want people to automatically be re-directed to you new location, client pull does this for you. You can even configure the amount of seconds you want the user to wait before being transferred to the new destination. In order to do this, just add in this line of code:
  6.  
  7. <HTML>
  8. <HEAD>
  9. <META HTTP-EQUIV="Refresh" CONTENT="0; URL=http://www.extreme-mac.com/">
  10. <TITLE>Extreme Mac has moved</TITLE>
  11. </HEAD>
  12. <BODY BGCOLOR="#000000" TEXT="#ffffff">
  13. <center>
  14. <font size=+2>
  15. Entering <a href="http://www.extreme-mac.com/">Extreme Mac</a> automatically. Please Wait 0 seconds.
  16. </font>
  17. </center>
  18. </BODY>
  19. </HTML>
  20.  
  21.     ‚Ä¢Basically, the only (black text) things that you have to configure are: 
  22. 1) The links to your destination page by changing the url location and name.
  23. 2) The number of seconds you want to define for them to be transported to the new page. To do this just change the code that says <META HTTP-EQUIV="Refresh" CONTENT="0; and just change the number between 0 through 5 seconds. (I would recommend 0 or 1 second)
  24.  
  25.     If when you try the option above and it is too slow for you, then the fastest option to redirect a person to your new location is just to use the <META HTTP-EQUIV="Refresh" CONTENT="0; URL=http://www.extreme-mac.com/"> in the html code of your web page, so it would look like this:
  26.  
  27. <HTML>
  28. <HEAD>
  29. <TITLE>Extreme Mac has moved</TITLE>
  30. <META HTTP-EQUIV="Refresh" CONTENT="0; URL=http://www.extreme-mac.com/">
  31. </HEAD>
  32. </HTML>
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.